home *** CD-ROM | disk | FTP | other *** search
- /*
- Visual FX
- For
- Image FX
- SetUp Script
- Written By J.L. White
-
- (C)1997 Merlin's Software
-
- */
- parse arg Num
- options results
- address "IMAGEFX.1"
-
-
- Gadget.1 = 'Select Direction Of Flip!'
- Gadget.2 = 'ClockWise'
- Gadget.3 = 'Counter ClockWise'
- ListRequest 3 Gadget
- Type = 0
- if result = 2 then Type = 0
- if result = 3 then Type = 1
-
- ActiveColor 0
- RequestNotify "Click On Color To Use As BackGround Then Click OK"
- ActiveColor
- Color = result
- ActiveColor 1
-
- call open TempFile,"VFXIFX:TempDrawer/"strip(Num),W
- call writeln TempFile,Color
- call writeln TempFile,Type
- call close TempFile
-